home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo -- executing: isthere %1 %2
- isthere %1 %2
- if errorlevel == 2 goto baderror
- if errorlevel == 1 goto nospace
-
- echo -- There was enough space!
- goto end
-
- :nospace
- echo -- There was not enough space!
- goto end
-
- :baderror
- echo -- Syntax error, bad drive or drive not ready.
-
- :end